void
gdk_drop_emit_motion_event (GdkDrop *self,
gboolean dont_queue,
- double x_root,
- double y_root,
+ double x,
+ double y,
guint32 time)
{
GdkDropPrivate *priv = gdk_drop_get_instance_private (self);
GdkEvent *event;
- int x, y;
g_warn_if_fail (priv->entered);
- gdk_surface_get_origin (priv->surface, &x, &y);
-
event = gdk_event_new (GDK_DRAG_MOTION);
event->any.surface = g_object_ref (priv->surface);
event->dnd.drop = g_object_ref (self);
event->dnd.time = time;
- event->dnd.x_root = x_root;
- event->dnd.y_root = y_root;
- event->dnd.x = x_root - x;
- event->dnd.y = y_root - y;
+ event->dnd.x = x;
+ event->dnd.y = y;
gdk_event_set_device (event, priv->device);
gdk_drop_do_emit_event (event, dont_queue);
void
gdk_drop_emit_drop_event (GdkDrop *self,
gboolean dont_queue,
- double x_root,
- double y_root,
+ double x,
+ double y,
guint32 time)
{
GdkDropPrivate *priv = gdk_drop_get_instance_private (self);
GdkEvent *event;
- int x, y;
g_warn_if_fail (priv->entered);
g_warn_if_fail (priv->state == GDK_DROP_STATE_NONE);
- gdk_surface_get_origin (priv->surface, &x, &y);
-
event = gdk_event_new (GDK_DROP_START);
event->any.surface = g_object_ref (priv->surface);
event->dnd.drop = g_object_ref (self);
event->dnd.time = time;
- event->dnd.x_root = x_root;
- event->dnd.y_root = y_root;
- event->dnd.x = x_root - x;
- event->dnd.y = y_root - y;
+ event->dnd.x = x;
+ event->dnd.y = y;
gdk_event_set_device (event, priv->device);
priv->state = GDK_DROP_STATE_DROPPING;
if ((drop != NULL) &&
(drop_x11->source_window == source_window))
{
- impl = GDK_X11_SURFACE (gdk_drop_get_surface (drop));
+ surface = gdk_drop_get_surface (drop);
+ impl = GDK_X11_SURFACE (surface);
drop_x11->suggested_action = xdnd_action_from_atom (display, action);
gdk_x11_drop_update_actions (drop_x11);
drop_x11->last_x = x_root / impl->surface_scale;
drop_x11->last_y = y_root / impl->surface_scale;
- gdk_drop_emit_motion_event (drop, FALSE, drop_x11->last_x, drop_x11->last_y, time);
+ gdk_drop_emit_motion_event (drop, FALSE, drop_x11->last_x - surface->x, drop_x11->last_y - surface->y, time);
}
return TRUE;
if ((drop != NULL) &&
(drop_x11->source_window == source_window))
{
- gdk_x11_surface_set_user_time (gdk_drop_get_surface (drop), time);
+ GdkSurface *s = gdk_drop_get_surface (drop);
+ gdk_x11_surface_set_user_time (s, time);
- gdk_drop_emit_drop_event (drop, FALSE, drop_x11->last_x, drop_x11->last_y, time);
+ gdk_drop_emit_drop_event (drop, FALSE, drop_x11->last_x - s->x, drop_x11->last_y - s->y, time);
}
return TRUE;